home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
amiexpress
/
source
/
ae
/
code
/
ax3.00
/
closeserial.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1980-01-03
|
300 b
|
14 lines
#include "bbs.h"
void CloseSerial(void)
{
if(SEROUT) {
CloseDevice(ReadSerReq);
DeleteExtIO(ReadSerReq);
DeletePort(ReadSerPort);
DeleteExtIO(WriteSerReq);
DeletePort(WriteSerPort);
}
SEROUT = 0; /*(RTS) was missing till now Mon Jun 8 03:59:03 1992 */
}